home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / amigaoscd / amigapluscd / AP-Website / news / admin / phpmyadmin / INSTALL < prev    next >
Text File  |  2002-01-27  |  2KB  |  42 lines

  1. phpMyAdmin - Installation
  2.  
  3.   Preface:
  4.     phpMyAdmin can administer a whole MySQL-server (needs a super-user) 
  5.     but also a single database. To accomplish the latter you'll need
  6.     a properly set up MySQL-user who can read/write only the desired
  7.     database. It's up to you to look up the appropiate part in the 
  8.     MySQL manual.
  9.  
  10.   Quick Install:
  11.     [1] Untar the distribution (be sure to untar the subdirectories)
  12.         tar xvf phpMyAdmin_x.x.x.tar
  13.     [2] Open the file config.inc.php3 in your favourite editor and change
  14.         the values for host, user and password to fit your environment.
  15.         Have a lok at Documentation.html for an explanation of all values.
  16.     [3] It is recommended that you protect the directory in which
  17.         you installed phpMyAdmin (unless it's on a closed intranet), 
  18.         for example with HTTP-AUTH (in a .htaccess-file). 
  19.     [4] Open the file <www.your-host.com>/<your-install-dir>/index.php3
  20.         in your browser. phpMyAdmin should now display a welcome screen 
  21.         and your databases.
  22.  
  23.   Installation notes:
  24.   + Be sure to protect the phpMyAdmin-directory. By default, it is not 
  25.     protected in any way! It shouldn't be readable by anyone and 
  26.     especially not by search-engines. Although I've added a "nofollow" 
  27.     directive on every page, there may be search-engines that don't 
  28.     care about that and still follow the links on the page. 
  29.     Think of AltaVista following a link named "Drop Database"
  30.     You can get an overview of Apache's authentification methods at
  31.     http://www.apacheweek.com/features/userauth . Another tutorial is at
  32.     http://deepthought.texsci.edu/protected_dirs.html
  33.   + PHP3 should be configured to have magic_quotes=on. In the module
  34.     version of PHP3 this can also be set on a per-directory base with 
  35.     php3_magic_quotes_gpc on in an .htaccess file or in your Apache's
  36.     access.conf.
  37.   + If you don't use the extension ".php3" for your scripts, you can use
  38.     the bundled script "extchg.sh" to modify phpMyAdmin (or any other script)
  39.     to work with a different extension. Beware though, that currently changing 
  40.     the extension from .html to something other won't work (it'd change all 
  41.     "string".htmlspecialchars() constructs).
  42.